/* ================= ROOT COLORS ================= */

:root {
    --blue: #1f5ea9;
    --red: #ef2026;
    --deep-blue: #03386b;
    --white: #ffffff;
}


/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    white-space: nowrap;
}

.top-bar i {
    margin-right: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
}


/* ================= NAVBAR ================= */

.navbar {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
    transition: 0.3s ease;
}

.navbar.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    animation: navbarDown 0.35s ease;
}

@keyframes navbarDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
}


/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #111;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}


/* ================= ORDER BUTTON ================= */

.order-btn {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.cart-icon {
    background: var(--red);
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.order-btn span:last-child {
    background: var(--blue);
    color: #fff;
    padding: 18px 30px;
    font-weight: 600;
}


/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--deep-blue);
}


/* ================================
   HERO SECTION
================================ */

.about-hero {
    width: 100%;

    background: #041f51;

    color: #ffffff;

    overflow: hidden;
}

.hero-container {
    min-height: 390px;

    display: grid;

    grid-template-columns: 48% 52%;
}


/* ================================
   HERO CONTENT
================================ */

.hero-content {
    padding: 55px 30px 50px 40px;

    position: relative;

    z-index: 2;

    background:
        radial-gradient(
            circle at 20% 45%,
            #0b3b79 0%,
            #062b64 30%,
            #041f51 70%
        );
}

.section-tag {
    display: block;

    color: #ef2632;

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 40px;

    line-height: 1.2;

    font-weight: 800;

    margin-bottom: 18px;
}

.hero-content p {
    max-width: 510px;

    font-size: 12px;

    line-height: 1.9;

    font-weight: 500;

    color: #ffffff;
}


/* ================================
   EXPLORE BUTTON
================================ */

.explore-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    padding: 8px 8px 8px 18px;

    background: #ef2632;

    color: #ffffff;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 800;

    transition: 0.3s;
}

.explore-btn span {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #ef2632;

    border-radius: 50%;
}

.explore-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(239, 38, 50, 0.35);
}


/* ================================
   HERO IMAGE
================================ */

.hero-image {
    min-height: 390px;

    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 31, 81, 0.1),
            rgba(4, 31, 81, 0)
        ),
        url("images/about-hero.jpg");

    background-size: cover;

    background-position: center;

    clip-path:
        polygon(
            11% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


/* ================================
   BUILDING BOARD
================================ */

.building-board {
    position: absolute;

    left: 42%;
    top: 48%;

    transform:
        translate(-50%, -50%)
        rotate(-5deg);

    padding: 12px 20px;

    background: rgba(5, 29, 67, 0.88);

    display: flex;

    flex-direction: column;
}

.building-board strong {
    font-size: 25px;

    font-weight: 800;
}

.building-board span {
    margin-top: 4px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .top-item:nth-child(2),
    .top-item:nth-child(3),
    .top-social {
        display: none;
    }

    .header-container {
        height: 70px;
    }

    .navigation {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        height: auto;

        padding: 20px;

        background: #ffffff;

        flex-direction: column;

        gap: 0;

        display: none;
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        width: 100%;

        height: 45px;

        justify-content: center;
    }

    .navigation a.active::after {
        bottom: 3px;
    }

    .order-btn {
        margin-right: 20px;
    }

    .menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 320px;

        clip-path: none;
    }

}


@media (max-width: 550px) {

    .order-btn {
        display: none;
    }

    .hero-content {
        padding:
            45px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 11px;
    }

    .hero-image {
        min-height: 260px;
    }

}
/* =====================================
   WHO WE ARE SECTION
===================================== */

.who-we-are {
    width: 100%;
    padding: 45px 0 35px;

    background:
        radial-gradient(
            circle at left center,
            rgba(7, 82, 160, 0.05),
            transparent 30%
        ),
        #ffffff;

    overflow: hidden;
}


.about-container {
    width: 1180px;
    max-width: 92%;

    margin: auto;

    display: grid;

    grid-template-columns: 45% 55%;

    align-items: center;

    gap: 65px;
}


/* =====================================
   LEFT IMAGE AREA
===================================== */

.about-image-area {
    width: 100%;

    position: relative;

    padding:
        10px 15px
        15px 25px;
}


.printing-image {
    width: 100%;
    height: 365px;

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    transform: skewX(-5deg);

    box-shadow:
        0 12px 30px
        rgba(0, 35, 90, 0.12);

    z-index: 2;
}


.printing-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        skewX(5deg)
        scale(1.1);

    transition: 0.5s;
}


.printing-image:hover img {
    transform:
        skewX(5deg)
        scale(1.17);
}


/* IMAGE OUTLINE */

.image-outline {
    position: absolute;

    width: 80%;
    height: 88%;

    top: 35px;
    right: 0;

    border:
        2px solid
        rgba(7, 82, 160, 0.25);

    border-radius: 15px;

    transform: skewX(-5deg);

    z-index: 1;
}


/* =====================================
   EXPERIENCE BOX
===================================== */

.experience-box {
    position: absolute;

    left: 0;
    bottom: 0;

    min-width: 135px;

    padding:
        17px 25px;

    background:
        linear-gradient(
            135deg,
            #f12b37,
            #e91d2a
        );

    color: #ffffff;

    border-radius: 8px;

    text-align: center;

    z-index: 5;

    box-shadow:
        0 10px 25px
        rgba(239, 38, 50, 0.28);
}


.experience-box strong {
    display: block;

    font-size: 40px;

    line-height: 1;

    font-weight: 800;

    margin-bottom: 8px;
}


.experience-box span {
    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;
}


/* =====================================
   ABOUT CONTENT
===================================== */

.about-content {
    width: 100%;
}


.about-tag {
    display: block;

    color: #ef2632;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 8px;
}


.about-content h2 {
    color: #071d4b;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 14px;
}


.about-content h2 span {
    color: #ef2632;
}


.about-description {
    max-width: 650px;

    color: #3f4b63;

    font-size: 11px;

    line-height: 1.7;

    font-weight: 500;
}


/* =====================================
   FEATURES
===================================== */

.about-features {
    width: 100%;

    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.about-feature {
    min-height: 160px;

    padding:
        0 18px;

    text-align: center;

    position: relative;

    border-right:
        1px solid
        #d8dfeb;
}


.about-feature:first-child {
    padding-left: 0;
}


.about-feature:last-child {
    border-right: none;

    padding-right: 0;
}


/* FEATURE ICON */

.feature-icon {
    width: 53px;
    height: 53px;

    margin:
        0 auto
        12px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 22px;

    font-style: normal;

    transition: 0.3s;
}


.feature-icon.blue {
    background:
        linear-gradient(
            135deg,
            #0752a0,
            #052e70
        );
}


.feature-icon.red {
    background:
        linear-gradient(
            135deg,
            #f3323e,
            #df1724
        );
}


.about-feature:hover .feature-icon {
    transform:
        translateY(-5px)
        rotate(8deg);
}


/* FEATURE TEXT */

.about-feature h3 {
    color: #071d4b;

    font-size: 12px;

    line-height: 1.55;

    font-weight: 800;

    margin-bottom: 8px;
}


.about-feature p {
    color: #4a5870;

    font-size: 9px;

    line-height: 1.6;

    font-weight: 500;
}


/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .who-we-are {
        padding:
            50px 0;
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-image-area {
        max-width: 600px;

        margin: auto;
    }


    .about-content {
        text-align: center;
    }


    .about-description {
        margin: auto;
    }


    .about-features {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 35px;
    }


    .about-feature {
        border-right: none;
    }

}


/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 550px) {

    .about-container {
        max-width: 90%;
    }


    .about-image-area {
        padding:
            0 10px
            25px 15px;
    }


    .printing-image {
        height: 280px;

        border-radius: 14px;
    }


    .experience-box {
        min-width: 115px;

        padding:
            15px 20px;
    }


    .experience-box strong {
        font-size: 32px;
    }


    .experience-box span {
        font-size: 10px;
    }


    .about-content h2 {
        font-size: 24px;
    }


    .about-description {
        font-size: 10px;
    }


    .about-features {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px 5px;
    }


    .about-feature {
        min-height: auto;

        padding: 0 8px;
    }


    .feature-icon {
        width: 48px;
        height: 48px;

        font-size: 19px;
    }

}
/* ==========================================
   JOURNEY STATS SECTION
========================================== */

.journey-section {
    width: 100%;

    padding: 15px 0 25px;

    background: #ffffff;
}


.journey-container {
    width: 1180px;
    max-width: 92%;

    margin: auto;

    padding: 18px 35px 25px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(8, 77, 160, 0.8),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            #052d6e,
            #031c49
        );

    border-radius: 14px;

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(2, 27, 70, 0.15);
}


/* ==========================================
   HEADING
========================================== */

.journey-heading {
    text-align: center;
}


.journey-heading > span {
    display: block;

    color: #f22b37;

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 5px;
}


.journey-heading h2 {
    color: #ffffff;

    font-size: 22px;

    font-weight: 800;

    margin: 0;
}


.journey-heading h2 strong {
    color: #f22b37;
}


.journey-heading h2 em {
    color: #1788d7;

    font-style: normal;
}


/* ==========================================
   STATS ROW
========================================== */

.journey-stats {
    width: 100%;

    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.journey-item {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    position: relative;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.28);
}


.journey-item:last-child {
    border-right: none;
}


/* ==========================================
   STAT ICON
========================================== */

.journey-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 23px;

    transition: 0.35s;
}


.blue-icon {
    background:
        linear-gradient(
            135deg,
            #0756b3,
            #06347a
        );
}


.red-icon {
    background:
        linear-gradient(
            135deg,
            #ff3440,
            #e51b28
        );
}


.journey-item:hover .journey-icon {
    transform:
        translateY(-5px)
        rotate(8deg);

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.2);
}


/* ==========================================
   STAT CONTENT
========================================== */

.journey-info h3 {
    color: #ffffff;

    font-size: 27px;

    line-height: 1;

    font-weight: 800;

    margin: 0 0 7px;
}


.journey-info h3::after {
    content: "+";
}


.journey-info p {
    color: #ffffff;

    font-size: 9px;

    font-weight: 500;

    margin: 0;
}


/* ==========================================
   TABLET RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .journey-container {
        padding:
            25px 30px;
    }


    .journey-stats {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 25px;
    }


    .journey-item:nth-child(2) {
        border-right: none;
    }


    .journey-item {
        padding:
            10px 20px;
    }

}


/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 550px) {

    .journey-section {
        padding:
            10px 0 25px;
    }


    .journey-container {
        max-width: 90%;

        padding:
            25px 20px;
    }


    .journey-heading h2 {
        font-size: 19px;

        line-height: 1.5;
    }


    .journey-stats {
        grid-template-columns: 1fr;

        margin-top: 25px;

        row-gap: 0;
    }


    .journey-item {
        justify-content: flex-start;

        border-right: none;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.2);

        padding:
            18px 20px;
    }


    .journey-item:last-child {
        border-bottom: none;
    }


    .journey-info h3 {
        font-size: 24px;
    }

}
/* =========================================
   OUR SERVICES SECTION
========================================= */

.services-section {
    width: 100%;
    padding: 25px 0 20px;
    background: #ffffff;
}


.services-container {
    width: 1180px;
    max-width: 92%;
    margin: auto;
}


/* SECTION HEADING */

.services-tag {
    display: block;

    color: #ef2632;

    font-size: 10px;
    font-weight: 800;

    margin-bottom: 6px;
}


.services-title {
    color: #071d4b;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 800;

    margin: 0 0 22px;
}


.services-title span {
    color: #ef2632;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    width: 100%;

    background:
        linear-gradient(
            160deg,
            #084388,
            #052b67
        );

    color: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 7px 15px
        rgba(0, 31, 78, 0.18);

    transition: 0.4s;
}


.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 30px
        rgba(0, 31, 78, 0.28);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {
    width: 100%;
    height: 155px;

    overflow: hidden;
}


.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.service-card:hover .service-image img {
    transform: scale(1.1);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
    min-height: 155px;

    padding: 15px 14px 13px;

    position: relative;
}


.service-content h3 {
    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    margin: 0 0 9px;
}


.service-content p {
    color: #ffffff;

    font-size: 9px;

    line-height: 1.7;

    font-weight: 500;

    margin: 0;

    opacity: 0.95;
}


/* =========================================
   ARROW BUTTON
========================================= */

.service-arrow {
    position: absolute;

    left: 14px;
    bottom: 12px;

    min-width: 30px;
    height: 18px;

    padding: 0 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ef2632;

    color: #ffffff;

    border-radius: 20px;

    font-size: 11px;

    transition: 0.3s;
}


.service-arrow:hover {
    min-width: 42px;

    background: #ffffff;

    color: #ef2632;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 750px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 500px) {

    .services-section {
        padding:
            30px 0;
    }


    .services-container {
        max-width: 90%;
    }


    .services-title {
        font-size: 22px;

        line-height: 1.35;
    }


    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .service-image {
        height: 210px;
    }


    .service-content {
        min-height: 145px;

        padding:
            18px 18px;
    }


    .service-content h3 {
        font-size: 14px;
    }


    .service-content p {
        font-size: 10px;

        max-width: 90%;
    }


    .service-arrow {
        left: 18px;

        bottom: 15px;
    }

}
/* =========================================
   WHY CHOOSE + PROCESS SECTION
========================================= */

.why-process-section {
    width: 100%;
    padding: 25px 0 35px;
    background: #ffffff;
}


.why-process-container {
    width: 1180px;
    max-width: 92%;
    margin: auto;

    display: grid;
    grid-template-columns: 36% 64%;

    align-items: stretch;
}


/* =========================================
   COMMON BOX
========================================= */

.why-choose-box,
.our-process-box {
    border: 1px solid #dce3ed;
    border-radius: 12px;

    background: #ffffff;
}


.small-heading {
    display: block;

    color: #ef2632;

    font-size: 10px;
    font-weight: 800;

    margin-bottom: 12px;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose-box {
    padding: 20px 35px;
}


.why-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.why-item {
    display: flex;
    align-items: center;

    gap: 15px;
}


.why-icon {
    width: 30px;
    height: 30px;

    min-width: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 13px;

    transition: 0.3s;
}


.why-icon.blue {
    background: #073b80;
}


.why-icon.red {
    background: #ef2632;
}


.why-item:hover .why-icon {
    transform: scale(1.15) rotate(10deg);
}


.why-item h3 {
    color: #071d4b;

    font-size: 11px;
    font-weight: 800;

    margin: 0 0 3px;
}


.why-item p {
    color: #536078;

    font-size: 9px;
    font-weight: 500;

    margin: 0;
}


/* =========================================
   OUR PROCESS
========================================= */

.our-process-box {
    padding: 20px 35px;
}


.our-process-box h2 {
    color: #071d4b;

    font-size: 22px;
    font-weight: 800;

    margin: 0 0 28px;
}


.our-process-box h2 span {
    color: #ef2632;
}


/* =========================================
   PROCESS LIST
========================================= */

.process-list {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    text-align: center;
}


.process-item {
    width: 19%;

    transition: 0.3s;
}


.process-item:hover {
    transform: translateY(-7px);
}


/* PROCESS ICON */

.process-icon {
    width: 66px;
    height: 66px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 8px 18px
        rgba(0, 38, 90, 0.15);
}


.process-icon.blue {
    background:
        linear-gradient(
            135deg,
            #0752a0,
            #052e70
        );
}


.process-icon.red {
    background:
        linear-gradient(
            135deg,
            #f43440,
            #df1825
        );
}


.process-item h3 {
    color: #071d4b;

    font-size: 11px;
    font-weight: 800;

    margin: 0 0 8px;
}


.process-item p {
    color: #536078;

    font-size: 8px;

    line-height: 1.6;

    margin: 0;
}


/* PROCESS ARROW */

.process-arrow {
    color: #7183a1;

    font-size: 20px;

    margin-top: 22px;

    animation: arrowMove 1.5s infinite;
}


@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .why-process-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .why-choose-box,
    .our-process-box {
        padding: 30px;
    }


    .why-list {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 600px) {

    .why-process-container {
        max-width: 90%;
    }


    .why-choose-box,
    .our-process-box {
        padding: 25px 20px;
    }


    .why-list {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .our-process-box h2 {
        font-size: 20px;
    }


    .process-list {
        flex-direction: column;

        align-items: center;
    }


    .process-item {
        width: 100%;

        max-width: 220px;
    }


    .process-item p {
        font-size: 9px;
    }


    .process-arrow {
        margin: 12px 0;

        transform: rotate(90deg);

        animation: arrowDown 1.5s infinite;
    }


    @keyframes arrowDown {

        0%,
        100% {
            transform:
                rotate(90deg)
                translateX(0);
        }

        50% {
            transform:
                rotate(90deg)
                translateX(6px);
        }

    }

}
/* =========================================
   RECENT PROJECTS SECTION
========================================= */

.projects-section {
    width: 100%;

    padding: 32px 0;

    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(8, 72, 155, 0.75),
            transparent 35%
        ),
        linear-gradient(
            115deg,
            #062e70,
            #031b47
        );

    color: #ffffff;
}


.projects-container {
    width: 1180px;
    max-width: 92%;

    margin: auto;
}


/* =========================================
   PROJECT TOP
========================================= */

.projects-top {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.projects-heading span {
    display: block;

    color: #f12a36;

    font-size: 10px;
    font-weight: 800;

    margin-bottom: 5px;
}


.projects-heading h2 {
    color: #ffffff;

    font-size: 25px;
    font-weight: 800;

    margin: 0;
}


/* =========================================
   FILTER BUTTONS
========================================= */

.project-filters {
    display: flex;

    align-items: center;

    gap: 8px;
}


.filter-btn {
    padding: 9px 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 5px;

    background: transparent;

    color: #ffffff;

    font-size: 9px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.filter-btn:hover,
.filter-btn.active {
    background: #ef2632;

    border-color: #ef2632;
}


/* =========================================
   PROJECT GRID
========================================= */

.projects-grid {
    width: 100%;

    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 10px;
}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {
    height: 150px;

    position: relative;

    border-radius: 8px;

    overflow: hidden;

    cursor: pointer;

    transition:
        opacity 0.35s,
        transform 0.35s;
}


.project-card.hide {
    display: none;
}


.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.project-card:hover img {
    transform: scale(1.12);
}


/* =========================================
   PROJECT OVERLAY
========================================= */

.project-overlay {
    position: absolute;

    inset: 0;

    padding: 15px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            to top,
            rgba(3, 27, 71, 0.95),
            rgba(3, 27, 71, 0)
        );

    opacity: 0;

    transform: translateY(20px);

    transition: 0.4s;
}


.project-card:hover .project-overlay {
    opacity: 1;

    transform: translateY(0);
}


.project-overlay span {
    color: #ef2632;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}


.project-overlay h3 {
    color: #ffffff;

    font-size: 11px;

    margin:
        5px 0 0;
}


/* =========================================
   GALLERY BUTTON
========================================= */

.gallery-button {
    width: max-content;

    margin:
        18px auto 0;

    padding:
        8px 10px
        8px 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    color: #ef2632;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

    transition: 0.3s;
}


.gallery-button span {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ef2632;

    color: #ffffff;
}


.gallery-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.25);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .projects-top {
        align-items: flex-start;

        flex-direction: column;
    }


    .project-filters {
        flex-wrap: wrap;
    }


    .projects-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 550px) {

    .projects-section {
        padding:
            40px 0;
    }


    .projects-container {
        max-width: 90%;
    }


    .projects-heading h2 {
        font-size: 23px;
    }


    .filter-btn {
        padding:
            8px 12px;
    }


    .projects-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .project-card {
        height: 220px;
    }


    .project-overlay {
        opacity: 1;

        transform: translateY(0);
    }

}



/* =====================================
   TESTIMONIAL SECTION
===================================== */

.testimonial-section {
    width: 100%;
    padding: 60px 0 65px;
    background: #f6f8fd;
    overflow: hidden;
}

.testimonial-heading {
    margin-bottom: 35px;
}


/* SLIDER */

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 25px;
}

.testimonial-track {
    display: flex;
    gap: 25px;

    transition: transform 0.6s ease;
}


/* =====================================
   TESTIMONIAL CARD
===================================== */

.testimonial-card {
    min-width: calc((100% - 50px) / 3);

    position: relative;

    background: #ffffff;

    border-radius: 15px;

    padding: 30px 28px 25px;

    border: 1px solid #e7ebf3;

    box-shadow:
        0 10px 30px rgba(7, 27, 80, 0.08);

    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(7, 27, 80, 0.14);
}


/* QUOTE ICON */

.quote-icon {
    position: absolute;

    right: 25px;
    top: 22px;

    color: #edf0f7;

    font-size: 45px;
}


/* STARS */

.client-stars {
    display: flex;
    gap: 4px;

    color: #ffc107;

    font-size: 12px;

    margin-bottom: 18px;
}


/* REVIEW TEXT */

.testimonial-card > p {
    min-height: 75px;

    position: relative;
    z-index: 2;

    color: #555e72;

    font-size: 12px;
    line-height: 1.8;

    font-style: italic;
}


/* =====================================
   CLIENT INFO
===================================== */

.client-info {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #edf0f5;
}

.client-info img {
    width: 50px;
    height: 50px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #edf1f8;
}

.client-info h4 {
    color: #081431;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 4px;
}

.client-info span {
    color: #ed1c2e;

    font-size: 9px;
    font-weight: 600;
}


/* =====================================
   SLIDER DOTS
===================================== */

.testimonial-dots {
    display: flex;
    justify-content: center;

    gap: 8px;

    margin-top: 5px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 20px;

    background: #bdc5d5;

    cursor: pointer;

    transition: 0.35s ease;
}

.testimonial-dot.active {
    width: 28px;

    background: #ed1c2e;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .testimonial-card {
        min-width: calc((100% - 25px) / 2);
    }

}


@media (max-width: 600px) {

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-track {
        gap: 0;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

}


/* =========================================
   BLOG SECTION
========================================= */

.blog-section {
    width: 100%;
    padding: 30px 0 35px;
    background: #ffffff;
}


.blog-container {
    width: 1180px;
    max-width: 92%;
    margin: auto;
}


.blog-tag {
    display: block;

    color: #ef2632;

    font-size: 10px;
    font-weight: 800;

    margin-bottom: 5px;
}


.blog-title {
    color: #071d4b;

    font-size: 25px;
    font-weight: 800;

    margin: 0 0 20px;
}


.blog-title span {
    color: #ef2632;
}


/* =========================================
   MAIN GRID
========================================= */

.blog-main-grid {
    display: grid;

    grid-template-columns:
        1fr 270px;

    gap: 25px;
}


/* =========================================
   BLOG CARDS GRID
========================================= */

.blog-cards {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    border: 1px solid #dfe5ed;

    border-radius: 8px;

    background: #ffffff;

    overflow: hidden;

    transition: 0.4s;
}


.blog-card:hover {
    transform: translateY(-7px);

    border-color: #ef2632;

    box-shadow:
        0 15px 30px
        rgba(0, 31, 80, 0.12);
}


/* BLOG IMAGE */

.blog-image {
    width: 100%;
    height: 125px;

    overflow: hidden;
}


.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.blog-card:hover .blog-image img {
    transform: scale(1.1);
}


/* =========================================
   BLOG CONTENT
========================================= */

.blog-content {
    padding: 12px 10px 14px;
}


.blog-content h3 {
    min-height: 48px;

    color: #071d4b;

    font-size: 10px;
    line-height: 1.5;

    font-weight: 800;

    margin: 0 0 8px;
}


.blog-date {
    display: block;

    color: #7b8798;

    font-size: 8px;

    margin-bottom: 14px;
}


.blog-content a {
    color: #07509b;

    font-size: 9px;

    font-weight: 800;

    transition: 0.3s;
}


.blog-content a:hover {
    color: #ef2632;
}


/* =========================================
   NEWSLETTER BOX
========================================= */

.newsletter-box {
    padding: 25px;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at top,
            rgba(12, 87, 180, 0.8),
            transparent 50%
        ),
        linear-gradient(
            150deg,
            #073b80,
            #041d4c
        );

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 12px 25px
        rgba(0, 31, 80, 0.18);
}


.newsletter-icon {
    font-size: 38px;

    margin-bottom: 10px;
}


.newsletter-box h2 {
    color: #ffffff;

    font-size: 22px;

    margin: 0 0 10px;
}


.newsletter-box p {
    font-size: 10px;

    line-height: 1.7;

    margin-bottom: 15px;
}


/* =========================================
   NEWSLETTER FORM
========================================= */

.newsletter-box input {
    width: 100%;
    height: 36px;

    padding: 0 12px;

    border: none;
    outline: none;

    border-radius: 4px;

    font-family: inherit;

    font-size: 9px;
}


.newsletter-box button {
    width: 100%;
    height: 36px;

    margin-top: 9px;

    border: none;

    border-radius: 4px;

    background: #ef2632;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;
}


.newsletter-box button:hover {
    background: #ffffff;

    color: #ef2632;

    transform: translateY(-2px);
}


#newsletterMessage {
    display: block;

    min-height: 15px;

    margin-top: 10px;

    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .blog-main-grid {
        grid-template-columns: 1fr;
    }


    .blog-cards {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .newsletter-box {
        max-width: 500px;

        width: 100%;

        margin: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .blog-section {
        padding: 40px 0;
    }


    .blog-container {
        max-width: 90%;
    }


    .blog-title {
        font-size: 22px;
    }


    .blog-cards {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .blog-image {
        height: 210px;
    }


    .blog-content {
        padding: 18px;
    }


    .blog-content h3 {
        min-height: auto;

        font-size: 13px;
    }


    .blog-date {
        font-size: 9px;
    }


    .blog-content a {
        font-size: 10px;
    }


    .newsletter-box {
        padding: 35px 25px;
    }

}
/* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta-section {
    width: 100%;
    padding: 30px 0;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(21, 102, 199, 0.7),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            #073b80,
            #031b47
        );

    position: relative;
    overflow: hidden;
}


.final-cta-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -150px;

    border: 45px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;
}


.final-cta-container {
    width: 1180px;
    max-width: 92%;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    position: relative;
    z-index: 2;
}


/* CTA CONTENT */

.cta-content > span {
    display: block;

    color: #ef2632;

    font-size: 10px;
    font-weight: 800;

    margin-bottom: 7px;
}


.cta-content h2 {
    color: #ffffff;

    font-size: 26px;
    line-height: 1.25;

    font-weight: 800;

    margin: 0 0 10px;
}


.cta-content h2 strong {
    display: block;

    color: #ef2632;
}


.cta-content p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 10px;
    line-height: 1.7;

    margin: 0;
}


/* =========================================
   CTA ACTIONS
========================================= */

.cta-actions {
    display: flex;

    align-items: center;

    gap: 25px;
}


.cta-primary {
    padding: 9px 10px 9px 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #ef2632;

    color: #ffffff;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.3s;
}


.cta-primary b {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #ef2632;

    border-radius: 50%;
}


.cta-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(239, 38, 50, 0.35);
}


/* PHONE */

.cta-phone {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;
}


.cta-phone i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    font-style: normal;

    font-size: 17px;
}


.cta-phone span {
    display: block;

    font-size: 8px;

    opacity: 0.7;

    margin-bottom: 3px;
}


.cta-phone strong {
    font-size: 11px;
}


/* ================= FOOTER ================= */

.footer {
    background:
        linear-gradient(
            110deg,
            #06467f,
            #033664
        );

    color: #fff;

    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr repeat(4, 1fr);

    gap: 35px;
}

.footer-logo img {
    width: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;

    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    background: #fff;
    color: var(--blue);

    border-radius: 50%;

    display: grid;
    place-items: center;

    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-column {
    padding-left: 30px;

    border-left:
        1px solid rgba(255, 255, 255, 0.25);
}

.footer-column h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 14px;

    margin-bottom: 20px;

    position: relative;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 30px;
    height: 2px;

    background: var(--red);
}

.footer-column a {
    display: block;

    color: #fff;

    font-size: 13px;

    margin-bottom: 11px;

    transition: 0.3s;
}

.footer-column a:hover,
.footer-column .footer-active {
    color: var(--red);
}

.contact-column p {
    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-column i {
    margin-right: 8px;
}


/* ================= COPYRIGHT ================= */

.copyright {
    border-top:
        1px solid rgba(255, 255, 255, 0.25);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    font-size: 12px;

    color: #ccd9e7;
}

.copyright span {
    color: var(--red);

    margin-left: 15px;
}


/* ================= RESPONSIVE 1100 ================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ================= RESPONSIVE 800 ================= */

@media (max-width: 800px) {

    .top-right span {
        display: none;
    }


    /* MOBILE NAV */

    .navbar .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        order: 3;
    }

    .nav-links {
        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px;

        text-align: center;
    }

    .order-btn {
        margin-left: auto;
        margin-right: 15px;
    }


    /* HERO */

    .hero-content {
        flex-direction: column;

        padding: 60px 0;
    }

    .hero-text,
    .hero-collage {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-collage {
        margin-top: 30px;
    } /*


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .final-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .final-cta-section {
        padding: 45px 0;
    }


    .final-cta-container {
        max-width: 90%;

        gap: 30px;
    }


    .cta-content h2 {
        font-size: 23px;
    }


    .cta-actions {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;
    }


    .cta-primary {
        width: 100%;

        justify-content: space-between;
    }


    .footer-container {
        max-width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0;
    }


    .footer-bottom-container {
        max-width: 90%;

        padding: 18px 0;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

}

